home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Tele / Pete Johnson / FC LogScan 1.0.2<source>.cpt / Globals.p < prev    next >
Encoding:
Text File  |  1992-03-04  |  677 b   |  30 lines  |  [TEXT/PJMM]

  1. { Globals.p }
  2.  
  3. unit Globals;
  4.  
  5. interface
  6.  
  7.     const
  8.         IGNORES = 12;
  9.         VERSION = '1.0.1';
  10.  
  11.     type
  12.         Settings = record
  13.                 FCLogPath, BriefPath, BriefName: str255;
  14.                 Creator: string[4];
  15.                 MFinder, Automatic, DoBriefRept: boolean;
  16.                 IgnoreSess: array[1..IGNORES] of integer;
  17.                 SpecialSess: integer;
  18.             end;
  19.  
  20.     var
  21.         Defaults: Settings;
  22.         callSymbol, noCallSymbol: char;
  23.         vRefNum, HowManyOmits: integer;
  24.         TitleString, SummaryString, LineTitle, TimeUsedTitle, ConnectionSpeedsTitle: str255;
  25.         RegistrationsTitle, NameCallsTimeTitle, TotalTitle, HeaderFileName, LegendString: str255;
  26.         gSessStart, gCommandLine, gSessionEnd, gAutoRegister: str255;
  27.  
  28. implementation
  29.  
  30. end. {Globals}